







[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Retreives the item currently at the back of the Deque. The Deque is
unchanged. This method is
equivalent to deque[deque.Count - 1] (except that a different exception is thrown).
Namespace: Wintellect.PowerCollections
Assembly:
PowerCollections (in PowerCollections.dll)
Syntax
C# |
---|
public T GetAtBack() |
Visual Basic (Declaration) |
---|
Public Function GetAtBack As T |
Visual C++ |
---|
public: T GetAtBack () |
Return Value
The item at the back of the Deque.
Remarks
Retreiving the item at the back of the Deque takes
a small constant amount of time, regardless of how many items are in the Deque.
Exceptions
Exception | Condition |
---|---|
System..::InvalidOperationException | The Deque is empty. |
See Also
Deque<(Of <T>)> Class
Wintellect.PowerCollections Namespace